home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / biz / dbase / EV30F.lha / EasyVideo / REXX / EV_Befehl10zurück.rexx < prev    next >
OS/2 REXX Batch file  |  1995-04-02  |  250b  |  23 lines

  1. /* RexxBefehle für EasyVideo
  2.    (c) Jörg Trahm
  3.  
  4.     Springe 10 Datensätze zurück
  5.  
  6. */
  7.  
  8.  
  9. call addlib('rexxsupport.library',0,-30)
  10.  
  11. parse arg PortName
  12. address(PortName)
  13. options results
  14.  
  15. Satz = 0
  16.  
  17. EV_Inhalt "Akt_Satz"
  18. Satz = Result - 10
  19. EV_Goto Satz
  20.  
  21. exit
  22.  
  23.